home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000332_david.secondary…onmountain.com_Fri Jul 16 11:01:08 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!panix!news.maxwell.syr.edu!postnews2.google.com!not-for-mail
  2. From: david.secondary@ironmountain.com (David Olson)
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Kermit 95 Handles Files Collisions Differently from MSKermit
  5. Date: 15 Jul 2004 16:11:09 -0700
  6. Organization: http://groups.google.com
  7. Lines: 102
  8. Message-ID: <7c9a306e.0407151511.38c36ea@posting.google.com>
  9. NNTP-Posting-Host: 216.229.147.20
  10. Content-Type: text/plain; charset=ISO-8859-1
  11. Content-Transfer-Encoding: 8bit
  12. X-Trace: posting.google.com 1089933070 17479 127.0.0.1 (15 Jul 2004 23:11:10 GMT)
  13. X-Complaints-To: groups-abuse@google.com
  14. NNTP-Posting-Date: Thu, 15 Jul 2004 23:11:10 +0000 (UTC)
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15081
  16.  
  17. Hello all,
  18.  
  19. I have a question that is driving us crazy and causing terrible
  20. support issues. I'd appreciate knowing if anyone has or knows of a
  21. solution or where to find one.
  22.  
  23. In the past, we have had MS-Kermit running in server mode where
  24. clients dial in and deposit files. This MS-Kermit server has had its
  25. file collision set to rename. When a file collision happens, numbers
  26. are tacked onto the filename before the extension. Example:
  27.  
  28. Original file: test.fil
  29. After collision: test01.fil
  30.  
  31. Now we have to use Kermit 95 on the server side so that we can talk to
  32. higher com ports and use TAPI. When file collision is set to either
  33. backup or rename, the behavior is different. Example:
  34.  
  35. Original file: test.fil
  36. after collision: test.fil.~1~
  37.  
  38. How do I get Kermit 95 to behave during collisions like the original
  39. MS-Kermit? I've read millions of pages of docs and tried everything
  40. and still cannot find how to do it. The current behavior is breaking
  41. our application.
  42.  
  43. ****************REFERENCE MATERIAL************************
  44.  
  45. Here's some reference info:
  46. Our prior system: mskermit 3.15 15 sept 97
  47.  
  48. the server mode is initialized by the following commands:
  49. set com1 \x03F8 \4 FIFO-enabled
  50. set port com1
  51. set speed 57600              
  52. set rec pack 1000
  53. set send pack 1000
  54. set term color 0,1,37,44  ; set colours
  55. set mode-line on      
  56. set input timeout proceed
  57. set input echo on
  58. disable all
  59. enable delete
  60. enable host
  61. enable login
  62. def errstp echo ERROR=> \%1\13,def \%1,pause 3,hangup,exit
  63. log transaction modem.log
  64. cd p:\
  65. output AT\13
  66. input 3 \10
  67. if fail errstp { NO RESPONSE FROM MODEM }
  68. pause 2
  69. output ATZ\13
  70. input 5 \10
  71. if fail errstp { MODEM RESET FAILED }
  72. pause 2
  73. clear
  74. output ATS0=1\13
  75. input 3 \10
  76. if fail errstp { FAILED TO SET MODEM AUTO ANSWER ON }
  77. pause 2
  78. server
  79. output ATS0=0\13
  80. pause 2
  81. exit
  82.  
  83. And the new system:
  84. Kermit 95 2.1.3 1 Jan 2003
  85.  
  86. Script to initialize the server instance:
  87.  
  88. set port com12
  89. set speed 57600
  90. set rec pack 1000
  91. set send pack 1000
  92. set input timeout proceed
  93. set terminal newline-mode on
  94. set input echo on
  95. enable finish
  96. enable send
  97. enable delete
  98. enable host
  99. log transaction c:\comm\kermit\logs\kermit2a.log append
  100. cd c:\landing\kermit2
  101. set file type text
  102. while true {
  103.     answer 0
  104.     if success {
  105.         server
  106.         hangup
  107.     }
  108. }
  109.  
  110. The clients dialing are using various earlier versions of mskermit
  111. such as mskermit 3.01 20 march 1990.
  112.  
  113. *****END REFERENCE MATERIAL********************
  114.  
  115. Thank you,
  116.  
  117. David Olson
  118. david.secondary@ironmountain.com